home *** CD-ROM | disk | FTP | other *** search
- function mStepFrame(interval)
- {
- if(this._parent.oChar.strMode == "paddling")
- {
- if(Key.isDown(32) || Key.isDown(39) || Key.isDown(37))
- {
- this._parent.mInitGame();
- }
- }
- if(this._parent.oChar.strMode == "surfing")
- {
- if(Key.isDown(32))
- {
- var step = this.intStep * this.mult;
- }
- else
- {
- var step = this.intStep;
- }
- }
- if(Key.isDown(39))
- {
- this.oChar.mRotate(step * interval);
- }
- if(Key.isDown(37))
- {
- this.oChar.mRotate((- step) * interval);
- }
- }
- this.intStep = 0.19634954084936207;
- this.mult = 2;
-